home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / trie.h < prev    next >
C/C++ Source or Header  |  1994-11-08  |  224b  |  7 lines

  1. /* $Id: trie.h,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
  2. */
  3. typedef struct trie_s *trie_ptr;
  4.  
  5. extern void trie_insert PROTO((trie_ptr *r,char *s,void *value));
  6. extern void *trie_lookup PROTO((trie_ptr *r,char **sp));
  7.